home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / os2 / remin301.zip / REMIN300.ZIP / REM < prev    next >
Text File  |  1992-11-10  |  893b  |  44 lines

  1. #!/bin/sh
  2. #
  3. # rem - by David Skoll - 26 February 1991
  4. #
  5. # This script runs 'remind' with a default reminder file assumed.  You
  6. # can override the default by using "rem -f newfile ..."  (But why would
  7. # you use rem unless you wanted to accept the default??)
  8.  
  9. # ------ You may wish to change the defaults below this line ------
  10.  
  11. # The default reminder file
  12. DEFAULT=$HOME/.reminders
  13.  
  14. # The executable file (you may wish to change this to /usr/local/bin/remind
  15. # or whatever.
  16. EXECUTABLE=remind
  17.  
  18. # No options yet
  19. OPTIONS=""
  20.  
  21. # No parameters yet
  22. PARAMETERS=""
  23.  
  24. # ------ You shouldn't change anything below this line -----
  25.  
  26. # Scan for options
  27. while test "$1" != ""
  28. do
  29.     case $1 in
  30.  
  31.         -F) DEFAULT=$2
  32.             shift
  33.             shift ;;
  34.  
  35.         -*) OPTIONS="$OPTIONS $1"
  36.             shift ;;
  37.  
  38.         *) PARAMETERS=$*
  39.            break ;;
  40.     esac
  41. done
  42.  
  43. $EXECUTABLE $OPTIONS $DEFAULT $PARAMETERS
  44.